home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-03-04 | 699 b | 38 lines | [TEXT/ToyS] |
- property gasWin : 0
- property gasLoc : {40, 60}
-
- global gasPic
-
-
- on run
- open (choose file)
- end run
-
-
- on open fsObj
- set gasWin to display drawing titled ¬
- "Wheeee!" with dimensions {320, 320} ¬
- located at gasLoc ¬
- starting with (the image from fsObj)
-
- set gasPic to capture picture from gasWin
-
- draw a string into gasWin ¬
- offset by {160, 160} ¬
- using data "Akua Sweets!" with a clear slate
- end open
-
-
- on idle
- set gasPic to rotate image gasPic by 50
- draw a picture into gasWin using data gasPic inside of {0, 0, 320, 320} without recording
- return 1
- end idle
-
-
- on quit
- set gasPic to 0
- set gasLoc to screen location of (display drawing gasWin with disposal)
- continue quit
- end quit
-